aboutsummaryrefslogtreecommitdiff
path: root/src/routes/t/[id].svelte
blob: 50aad509ff909185f8a9099fab3150131aeb3070 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<script context="module">
	export const load = ({
	  page: {
	    params: { id }
	  }
	}) => ({ props: { id } });
</script>

<script>
	import { onDestroy } from 'svelte';
	import { _ } from 'svelte-i18n';
	import { getTopic } from '$/stores/topics';
	import { disableTopicActions, enableTopicActions } from '$/stores/actions';

	import Topic from '$/components/topic/topic.svelte';
	import ErrorBlock from '$/components/error_block/error_block.svelte';
	import Loader from '$/components/loader/loader.svelte';

	export let id;

	$: store = getTopic(id);
	$: topic = $store.data;

	enableTopicActions(id);
	onDestroy(() => disableTopicActions());
</script>

<svelte:head>
	{#if $store.loading}
		<title>{$_('loader.message')}, {$_('topic.title')}</title>
	{/if}
	{#if $store.error}
		<title>{$_('error.generic.title')}, {$_('topic.title')}</title>
	{/if}
	{#if topic}
		<title>{topic.title}, {$_('topic.title')}</title>
	{/if}
</svelte:head>

{#if $store.loading}
	<Loader />
{/if}
{#if $store.error}
	<ErrorBlock message={$_('topic.error.unavailable')} />
{/if}
{#if topic}
	<Topic {topic} />
{/if}